VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA

by Edgar C. (2 Submissions)
Category: String Manipulation
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Originally Published: Wed 12th April 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA

Rate REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA



Dim newString As String, xCount As Integer
newString = ""
For xCount = 1 To Len(thisString)
    newString = newString & Left(Right(thisString, xCount), 1)
Next xCount
reverseString = newString
End Function

Download this snippet    Add to My Saved Code

REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA Comments

No comments have been posted about REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA. Why not be the first to post a comment about REVERSES the order of a given string!!! - Enhanced Version Ex: Apple => elppA.

Post your comment

Subject:
Message:
0/1000 characters